home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / 56000tar.z / 56000tar / 56000 / flts / iir2t.asm < prev    next >
Assembly Source File  |  1991-11-26  |  1KB  |  44 lines

  1. ;
  2. ; This program originally available on the Motorola DSP bulletin board.
  3. ; It is provided under a DISCLAIMER OF WARRANTY available from
  4. ; Motorola DSP Operation, 6501 Wm. Cannon Drive W., Austin, Tx., 78735.
  5. ; Last Update 16 Jul 87   Version 1.0
  6. ;
  7.                                                                                                                                
  8. ; IIR2 Filter Test Program
  9. ;
  10. ;  This test program has the filter coefficients divided by two
  11. :  because the filter program uses coefficient scaling.
  12. ;
  13.         opt     cex,mex
  14.         page    132,66,0,10
  15.         include 'iir2'
  16.  
  17. datin   equ     $ffff           ;location in Y memory of input file
  18. datout  equ     $fffe           ;location in Y memory of output file
  19. npts    equ     20              ;number of points to process
  20.  
  21.         org     x:0
  22. states  ds      2               ;filter states
  23.  
  24.         org     y:0
  25. coef    dc      .8/2.0,-.3/2.0          ;coefficients
  26.  
  27.         org     p:$100
  28. start
  29.         move    #states,r0      ;point to filter states
  30.         move    #coef,r4        ;point to filter coefficients
  31.  
  32.         do      #npts,_endp
  33.  
  34.         movep   y:datin,a       ;get sample
  35.  
  36.         iir2                    ;do 2nd order iir
  37.  
  38.         nop
  39.         nop
  40.         movep   a,y:datout      ;output sample
  41. _endp
  42.         end
  43.